/* ── FONTS ────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;600&family=DM+Sans:wght@300;400;500&family=Barlow+Condensed:wght@500;700&display=swap');

/* ── TYPOGRAPHY ───────────────── */
:root {
  --font-header: 'Bebas Neue', sans-serif;
  --font-subheading: 'Oswald', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Barlow Condensed', sans-serif;
}

h1 { font-family: var(--font-header); }
h2, h3 { font-family: var(--font-subheading); font-weight: 600; }
p, body { font-family: var(--font-body); font-weight: 400; }
button { font-family: var(--font-accent); font-weight: 700; }
/* ── RESET ────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary, #1a1a1a);
  color: var(--text-primary, #ffffff);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
}

img {
  width: 100%;
  display: block;
}


/* ── BUTTONS ────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #3a8f3d;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}


/* ── NAVBAR ────────────────────── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: var(--bg-primary, #1a1a1a);
  position: sticky;
  top: 0;
  z-index: 999;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #aaa;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  padding: 9px 20px;
  background: #22c55e;
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: #16a34a;
}

.dropdown-arrow {
  margin-left: 6px;
  font-size: 0.8rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 0;
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #aaa;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(34,197,94,0.1);
  color: #fff;
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: #aaa;
  transition: transform 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--color-white);
  font-family: var(--font-subheading);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-secondary);
}

.nav-cta {
  background-color: var(--color-secondary);
  color: var(--color-white) !important;
  padding: 10px 20px;
  border-radius: 6px;
}

.nav-cta:hover {
  background-color: #3a8f3d !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-links > li {
  position: relative;
}

.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  font-size: 0.8rem;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background-color: var(--color-primary);
  border-radius: 12px;
  min-width: 220px;
  padding: 10px 0;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 999;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 22px;
  color: var(--color-white);
  white-space: nowrap;
  font-family: var(--font-subheading);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-secondary);
}


/* ── HERO ────────────────────── */
.hero {
  background: linear-gradient(to bottom, #1f1f1f, #1a1a1a);
  color: var(--text-primary, #ffffff);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--color-white);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 36px;
  color: #cccccc;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

  .about-hero {
    text-align: center;
    padding: 120px 40px;
  }

  .about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .about-hero p {
    font-size: 1.15rem;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
  }
.trust-item {
  text-align: center;
  color: var(--color-white);
}

.trust-item h3 {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.9rem;
  opacity: 0.85;
}


/* ── SECTIONS ────────────────────── */
section {
  padding: 80px 40px;
}

.services-preview,
.portfolio-preview {
  text-align: center;
}

.services-preview .services-grid,
.portfolio-preview .preview-grid {
  margin: 0 auto;
}

.section-sub {
  color: var(--color-text-muted);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.our-story,
.mission,
.about-cta {
  text-align: center;
}

.our-story p,
.mission p {
  max-width: 760px;
  margin: 0 auto 24px;
}

.about-cta {
  padding-top: 24px;
}

.about-cta .btn {
  display: inline-block;
  margin-top: 16px;
}

/* ── SERVICE CARDS ────────────────────── */
.services-section {
  background-color: #111;
  color: #f4f4f4;
  padding: 80px 40px;
}

.services-section .section-header {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: left;
}

.section-tag {
  text-transform: uppercase;
  color: var(--color-secondary);
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.services-section h1 {
  font-size: 3.5rem;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 18px;
}

.services-section .section-sub {
  max-width: 720px;
  color: #b8d7b3;
  font-size: 1.05rem;
  line-height: 1.8;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: var(--bg-card, #222222);
  border: 1px solid var(--border, rgba(255,255,255,0.07));
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  background: var(--bg-card-hover, #272727);
  border-color: rgba(34,197,94,0.25);
}

.card.card-featured,
.card.featured {
  border-color: var(--color-secondary);
  box-shadow: 0 36px 86px rgba(0, 0, 0, 0.55);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: #111;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.card-category {
  text-transform: uppercase;
  color: var(--color-secondary);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.card h2 {
  color: #ffffff;
  font-size: 2.1rem;
  margin-bottom: 20px;
}

.card .price {
  font-size: 0.95rem;
  color: #b7c9b8;
  margin-bottom: 8px;
}

.card .price span {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-secondary);
  line-height: 1;
  margin-top: 10px;
}

.card .interior-note {
  color: #97b289;
  margin-bottom: 26px;
  font-size: 0.98rem;
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
}

.details-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  color: #d8e9d8;
  line-height: 1.75;
}

.details-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-secondary);
  font-size: 1rem;
  line-height: 1;
}

.btn-quote {
  width: 100%;
  text-align: center;
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.btn-solid {
  background-color: var(--color-secondary);
  color: #111;
  border: 1px solid transparent;
}

.btn-solid:hover {
  background-color: #65c05a;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.addons-bar {
  margin-top: 40px;
  width: 100%;
}

.addons-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(25, 35, 24, 0.92);
  border: 1px solid rgba(76, 175, 80, 0.18);
  border-radius: 32px;
  padding: 24px 28px;
}

.addons-label {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.addon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.addon-tags span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d8e9d8;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-addon {
  min-width: 170px;
  padding: 14px 22px;
}

@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 700px) {
  .services-section {
    padding: 60px 20px;
  }

  .card {
    min-height: auto;
    padding: 26px;
  }

  .addons-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-addon {
    width: 100%;
  }
}


/* ── PORTFOLIO GRID ────────────────────── */
.portfolio-grid,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.portfolio-item img,
.preview-item img {
  border-radius: 8px;
  object-fit: cover;
  height: 260px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.why-us {
  text-align: center;
}

.why-us .why-text {
  max-width: 760px;
  margin: 0 auto;
}

.why-us .why-text h2 {
  font-size: 2.6rem;
  margin-bottom: 24px;
}

.why-us .why-text p {
  margin-bottom: 24px;
}

.why-us .why-text .btn {
  margin-top: 24px;
}

.about-hero {
  text-align: center;
  padding: 120px 40px;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 1.15rem;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ── ABOUT / VALUES ────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.value-card {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(56, 123, 53, 0.15);
}

.value-card h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  color: var(--color-white);
  background-color: var(--color-secondary);
  margin-bottom: 16px;
}


/* ── CTA BANNER ────────────────────── */
.cta-banner {
  background-color: var(--color-accent);
  color: var(--color-white);
  text-align: center;
  padding: 80px 40px;
}

.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta-banner p {
  margin-bottom: 28px;
  opacity: 0.9;
}


/* ── QUOTE PAGE ────────────────────── */
body, .quote-page {
  background-color: #1a1a1a;
}

.quote-page {
  min-height: calc(100vh - 90px);
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-card {
  width: 100%;
  max-width: 980px;
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 30px;
  padding: 42px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.quote-header {
  max-width: 740px;
  margin-bottom: 32px;
}

.quote-header h1 {
  font-size: 3.5rem;
  margin: 12px 0 14px;
  color: #ffffff;
}

.quote-copy {
  color: #a8b49d;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.vehicle-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #242424;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  color: #ffffff;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form select option,
.contact-form textarea::placeholder {
  color: #7a7a7a;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #22c55e;
  outline: none;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #22c55e;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.addon-item {
  background: #242424;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.addon-item input {
  width: 18px;
  height: 18px;
  accent-color: #22c55e;
}

.addon-item span {
  color: #ffffff;
  font-size: 0.95rem;
}

.addon-item.checked {
  border-color: #22c55e;
  background: #1a2e1a;
}

.submit-btn {
  background: #22c55e;
  color: #0a1a0a;
  border-radius: 50px;
  font-weight: 700;
  width: 100%;
  padding: 16px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.submit-btn:hover {
  background: #27d96b;
}

.quote-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #94b88b;
  font-size: 0.95rem;
}

.quote-footer span::before {
  content: '•';
  display: inline-block;
  margin-right: 10px;
  color: #22c55e;
}

@media (max-width: 820px) {
  .quote-card {
    padding: 32px;
  }

  .form-grid,
  .addon-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .quote-page {
    padding: 40px 16px;
  }

  .quote-header h1 {
    font-size: 2.8rem;
  }
}

.disclaimer-banner {
  background-color: #fff3cd;
  color: #856404;
  text-align: center;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 0.95rem;
}


/* ── FOOTER ────────────────────── */
.footer {
  background-color: #0d0d0d;
  color: var(--text-primary, #ffffff);
  text-align: center;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #cccccc;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.footer-contact p {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.footer-contact a {
  color: var(--color-secondary);
}

.footer-copy {
  font-size: 0.8rem;
  color: #888888;
}


/* ── LIGHTBOX ────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox-close { top: -50px; right: 0; }
.lightbox-prev { left: -50px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -50px; top: 50%; transform: translateY(-50%); }


/* ── MOBILE RESPONSIVE ────────────────────── */
@media (max-width: 768px) {

  .navbar { padding: 16px 20px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    padding: 20px;
    gap: 16px;
    text-align: center;
  }

  .nav-links.active { display: flex; }

  .hamburger { display: flex; }

  .hero h1 { font-size: 2.2rem; }

  section { padding: 60px 20px; }

  .trust-bar { flex-direction: column; text-align: center; }

  .lightbox-prev { left: -10px; }
  .lightbox-next { right: -10px; }
}